home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep 4.1 (User)
/
OpenStep 4.1 (User).iso
/
NextDeveloper
/
Demos
/
DarkForest.app
/
English.lproj
/
CleanupScript
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-04-04
|
272 b
|
12 lines
#!/bin/csh -f
#
# This script is run when you use the Clean Up
# command. By default, it runs "make clean".
set pred = "( -name Makefile -o -name makefile )"
set makefiles = `find $argv $pred -print -prune`
foreach makefile ($makefiles)
cd $makefile:h; make clean
end